home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / MacPerl ƒ / Perl Source ƒ / Perl / SubLaunch.h < prev    next >
Text File  |  1993-10-23  |  850b  |  34 lines

  1. /*********************************************************************
  2. Project    :    SubLaunch        -    Call ToolServer
  3. File        :    SubLaunch.h        -    Interface
  4. Author    :    Matthias Neeracher
  5. Started    :    06Dec91                                Language    :    MPW C/C++
  6. Modified    :    06Dec91    MN    
  7.                 15Nov92    MN    FSp2FullPath
  8. Last        :    15Nov92
  9.  
  10. Copyright (c) 1991, 1992 Matthias Neeracher
  11.  
  12.     You may distribute under the terms of the Perl Artistic License,
  13.     as specified in the README file.
  14.  
  15. *********************************************************************/
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21. #include <Types.h>
  22. #include <Files.h>
  23.  
  24. /* Create a temporary file in the temp folder. 
  25. */
  26. OSErr    FSpMakeTempFile(FSSpec * desc);
  27.  
  28. /* Execute the command. Any of the files may be set to NULL */
  29. OSErr SubLaunch(char * commandline, FSSpec * input, FSSpec * output, FSSpec * error);
  30.  
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34.